Prisma ClientのModel queries
findUnique
unique制約があるcolumnに対して指定する
返り値が配列ではなく値なるところでは
findUniqueOrThrow
findFirst
orderByでsortしつつ1番上に来るやつ
findFirstOrThrow
findMany
create
update
upsert
存在しなければcreate、存在すればupdate
delete
createMany
updateMany
deleteMany
count
aggregate
groupBy